home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1063 / HARD.BAT < prev    next >
DOS Batch File  |  1989-01-08  |  1KB  |  46 lines

  1. echo off
  2. cls
  3. for %%a in (a:,A:,b:,B:) do if %%a == %1 goto test2
  4. goto errorfound
  5. :test2
  6. for %%b in (c:,C:,d:,D:,e:,E:,f:,F:) do if %%b == %2 goto run
  7. goto errorfound
  8. :run
  9. echo. Installation of Software Mines Fantasy Role Playing Utilities
  10. echo. from floppy disk drive:    %1
  11. echo. to your hard disk drive:   %2
  12. echo. is about to start (press Ctrl-C to abort).
  13. echo.
  14. echo. These files will be installed under a directory named FRP.
  15. echo.
  16. pause
  17. %2
  18. cd\
  19. md frp
  20. cd\frp
  21. copy %1pkxarc.com %2
  22. copy %1frp*.arc %2
  23. pkxarc -x frp*.arc *.*
  24. del pkxarc.com
  25. del frp*.arc
  26. cls
  27. echo. Installation complete!
  28. echo.
  29. echo.
  30. echo. You now can access the program documentation in %2/FRP/FRP.DOC
  31. echo. This file can be printed, or viewed with most ASCII text editors.
  32. echo.
  33. goto end
  34. :errorfound
  35. echo. Check your input ERROR found!!!!!!!!!!!
  36. echo.
  37. echo. HARD.BAT requires the following format:
  38. echo.
  39. echo.     HARD [This Floppy Disk]  [Hard Disk]
  40. echo.
  41. echo.     Example:   HARD A: C:
  42. echo.
  43. echo on
  44. :end
  45.  
  46.